home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1991 …esperately Seeking Seven / Desperately Seeking Seven.2mg / Dev.CD.8 / Essentials / Tools / DTS.Samples / SC01Shell / Asm.Shell / data.Build next >
Encoding:
Text File  |  1990-04-03  |  477 b   |  24 lines  |  [04] ASCII Text (0x0000)

  1. *
  2. *   This exec file does a data fork build of
  3. *   the sample application: Shell
  4. *
  5. *   File:         Build
  6. *   Target:       Shell
  7. *   Source:       Shell.aii
  8. *
  9. *   Copyright Apple Computer, Inc. 1988-1990
  10. *   All rights reserved.
  11. *
  12.  
  13. echo "Assembling Shell.aii"
  14. assemble Shell.aii keep=Shell
  15.  
  16. echo "Linking..."
  17. linkiigs Shell.root Shell.a -o Shell.dfork
  18.  
  19. echo "Duplicating data and resource forks..."
  20. duplicate -d Shell.dfork Shell
  21. duplicate -r Shell.rfork Shell
  22.  
  23. echo "Done!"
  24.